@charset "utf-8";
/* CSS Document */

#navBar{
	display: block;
	width: 150px;
	margin: 5px 0px 10px 0px;
	float:left;
	font-size:12px;
	/*	font: normal 12px Arial, Helvetica, sans-serif;*/
	text-transform: uppercase;
}

#navBar a{
	display: block;
	text-decoration: none;
	margin: 5px 0px 5px 0px;
/*	color: #999;*/
} /* grey color */

#navBar ul{
	margin: 0px;
	padding: 0px;
	list-style-type: none;
}
#navBar ul.nav li {
	list-style-type: none;
	margin-left: 0px;
	border-bottom: dotted #9cf 1px;	/*background-color: #9CF;*/
} /* remove the list circles */
#navBar ul.nav li a:hover{
	list-style-type: none;
	margin-left: 5px;
/*	padding-left:3px;
	background-color: #9CF;*/
} /* remove the list circles */

#navBar ul.nav li ul li {
	list-style-type: none;
	margin-left: 5px;
	font-size:9px;
/*	background-color: #CF6;*/
} /* remove the list circles */

#navBar ul.nav li ul li a:hover {
	list-style-type: none;
	margin-left: 7px;

/*	background-color: #CF6;*/
} /* remove the list circles */

/*2. The green on state, uses the .nav-path-selected class generated by autonav*/

#navBar ul.nav > li.nav-path-selected {background: url(images/nav_not.png) 0px 2px no-repeat;} /*place the leaf on the list item, note the descendant since the .nav-path-selected is used on both menu levels.*/
#navBar ul.nav li.nav-path-selected a{
	color:#069;/* change text to lili*/
	font-weight:600;
	margin-left: 15px;
} 

/*3. The submenu only exists when the parent item is selected so i can still use .nav-path-selected class*/

#navBar ul.nav li.nav-path-selected ul {margin-left:5px;} /* indent the sub menu*/

#navBar ul.nav li.nav-path-selected ul a{
	color:#666; font-weight:normal;
} /* base color of links is black*/
#navBar ul.nav li.nav-path-selected ul a.nav-selected{
	color:#8338C7;
} /* active link is red*/
